Move documentation to inline comments: GtkScaleButton
authorJavier Jardón <jjardon@gnome.org>
Sat, 15 May 2010 22:32:05 +0000 (00:32 +0200)
committerJavier Jardón <jjardon@gnome.org>
Sat, 15 May 2010 22:32:05 +0000 (00:32 +0200)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkscalebutton.sgml [deleted file]
gtk/gtkscalebutton.c

index 102a012dac7632c994e998dead1ce57b6c265839..618a2dd7b1c4b15c693088aed45ca44a31ac81ae 100644 (file)
@@ -8,6 +8,7 @@ gtkorientable.sgml
 gtkpagesetupunixdialog.sgml
 gtkradioaction.sgml
 gtkrecentaction.sgml
+gtkscalebutton.sgml
 gtkseparator.sgml
 gtktesting.sgml
 gtktextiter.sgml
diff --git a/docs/reference/gtk/tmpl/gtkscalebutton.sgml b/docs/reference/gtk/tmpl/gtkscalebutton.sgml
deleted file mode 100644 (file)
index e499ecb..0000000
+++ /dev/null
@@ -1,158 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkScaleButton
-
-<!-- ##### SECTION Short_Description ##### -->
-A button which pops up a scale
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-#GtkScaleButton provides a button which pops up a scale widget. 
-This kind of widget is commonly used for volume controls in multimedia
-applications, and GTK+ provides a #GtkVolumeButton subclass that
-is tailored for this use case.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkScaleButton ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### SIGNAL GtkScaleButton::popdown ##### -->
-<para>
-
-</para>
-
-@scalebutton: the object which received the signal.
-
-<!-- ##### SIGNAL GtkScaleButton::popup ##### -->
-<para>
-
-</para>
-
-@scalebutton: the object which received the signal.
-
-<!-- ##### SIGNAL GtkScaleButton::value-changed ##### -->
-<para>
-
-</para>
-
-@scalebutton: the object which received the signal.
-@arg1: 
-
-<!-- ##### ARG GtkScaleButton:adjustment ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkScaleButton:icons ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkScaleButton:size ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkScaleButton:value ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_scale_button_new ##### -->
-<para>
-
-</para>
-
-@size: 
-@min: 
-@max: 
-@step: 
-@icons: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_set_adjustment ##### -->
-<para>
-
-</para>
-
-@button: 
-@adjustment: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_set_icons ##### -->
-<para>
-
-</para>
-
-@button: 
-@icons: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_set_value ##### -->
-<para>
-
-</para>
-
-@button: 
-@value: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_get_adjustment ##### -->
-<para>
-
-</para>
-
-@button: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_get_value ##### -->
-<para>
-
-</para>
-
-@button: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_get_popup ##### -->
-<para>
-
-</para>
-
-@button: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_get_plus_button ##### -->
-<para>
-
-</para>
-
-@button: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_scale_button_get_minus_button ##### -->
-<para>
-
-</para>
-
-@button: 
-@Returns: 
-
-
index 029123b10bd05e10446ddf8c85004ef282c9774c..f994d6e92f07ebe207c9f897d584b333e2c7a4a8 100644 (file)
 #include "gtkintl.h"
 #include "gtkalias.h"
 
+
+/**
+ * SECTION:gtkscalebutton
+ * @Short_description: A button which pops up a scale
+ * @Title: GtkScaleButton
+ *
+ * #GtkScaleButton provides a button which pops up a scale widget.
+ * This kind of widget is commonly used for volume controls in multimedia
+ * applications, and GTK+ provides a #GtkVolumeButton subclass that
+ * is tailored for this use case.
+ */
+
+
 #define SCALE_SIZE 100
 #define CLICK_TIMEOUT 250